    :root{
      --bg: #0F0F0F;
      --bg2:#1A1A1A;
      --text:#EAEAEA;
      --muted:#B0B0B0;
      --gold:#F5C518;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    body{
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, sans-serif;
    }

    /* NAVBAR */
    .navbar{
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(15,15,15,0.95);
      border-bottom: 1px solid var(--bg2);
      padding: 20px 24px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:var(--text);
      font-weight:700;
    }

    .brand-badge{
      width:34px;
      height:34px;
      border-radius:10px;
      background: linear-gradient(135deg, var(--gold), #caa10f);
      display:grid;
      place-items:center;
      color:#111;
      font-weight:900;
    }

    .nav-links{
      list-style:none;
      display:flex;
      gap:18px;
    }

    .nav-links a{
      color: var(--muted);
      text-decoration:none;
      font-weight:600;
      padding:10px 14px;
      border-radius:8px;
      transition:0.2s;
      font-size:1.1rem;
    }

    .nav-links a:hover{
      color: var(--text);
      background: rgba(245,197,24,0.08);
    }

    .dropdown-menu{
      background:#111;
      border:1px solid rgba(245,197,24,0.25);
      border-radius:12px;
    }

    .dropdown-item{
      color:var(--muted);
      font-weight:600;
    }

    .dropdown-item:hover{
      background: rgba(245,197,24,0.15);
      color: var(--gold);
    }

    .navbar-toggler-icon{
      filter: invert(1);
    }

    /* FORM */
    .form-container{
      max-width: 600px;
      margin: 80px auto;
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      border: 1px solid rgba(245,197,24,0.18);
      padding: 30px;
      box-shadow: 0 12px 35px rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
    }

    .form-container h2{
      text-align: center;
      color: var(--gold);
      margin-bottom: 25px;
    }

    .form-control, .form-control:focus{
      background: rgba(255,255,255,0.05);
      border:1px solid var(--gold);
      color: var(--text);
    }

    .form-control::placeholder{
      color: var(--muted);
    }

    .btn-gold{
      background: var(--gold);
      color: #111;
      font-weight: 600;
      transition:0.3s;
    }

    .btn-gold:hover{
      background: #FFD84D;
      color: #111;
    }
       .yazı-box{
      max-width: 900px;
      margin: 50px auto;
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      border: 1px solid rgba(245,197,24,0.18);
      padding: 30px 40px;
      text-align: center;
      color: var(--gold);
      box-shadow: 0 12px 35px rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
    }

    .yazı-box .social-icons{
      margin-bottom: 20px;
    }

    .yazı-box .social-icons a{
      color: var(--gold);
      font-size: 1.5rem;
      margin: 0 10px;
      transition: 0.3s;
    }

    .yazı-box .social-icons a:hover{
      color: #FFD84D;
    }
    .yazı-box .yazı-link {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.yazı-box .yazı-link:hover {
  color: #FFD84D;
  text-decoration: underline;
}